home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / finger_0.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  98 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #T
  7.  
  8. if(description)
  9. {
  10.  script_id(10069);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CAN-1999-0197");
  13.  name["english"] = "Finger zero at host feature";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = " 
  17. There is a bug in the remote finger service which, when triggered, allows
  18. a user to force the remote finger daemon to  display the list of the accounts 
  19. that have never been used, by issuing the request :
  20.  
  21.         finger 0@target
  22.         
  23. This list will help an attacker to guess the operating system type. It will 
  24. also tell him which accounts have never been used, which will often make him 
  25. focus his attacks on these accounts.
  26.  
  27. Solution : disable the finger service in /etc/inetd.conf and restart the inetd
  28. process, or upgrade your finger service.
  29.  
  30. Risk factor : Medium";
  31.  
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Finger 0@host feature";
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison");
  42.  family["english"] = "Finger abuses";
  43.  script_family(english:family["english"]);
  44.  script_dependencie("find_service.nes");
  45.  script_require_ports("Services/finger", 79);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52.  
  53. port = get_kb_item("Services/finger");
  54. if(!port)port = 79;
  55. if(get_port_state(port))
  56. {
  57.  soc = open_sock_tcp(port);
  58.  if(soc)
  59.  {
  60.   # Cisco
  61.   data = recv(socket:soc, length:2048, timeout:5);
  62.   if(data)exit(0);
  63.   buf = string("0\r\n");
  64.   send(socket:soc, data:buf);
  65.   data = recv(socket:soc, length:65535);
  66.   close(soc);
  67.  
  68.   if(strlen(data)<150)exit(0);  
  69.   data_low = tolower(data);
  70.   if(data_low && (!("such user" >< data_low)) && 
  71.      (!("doesn't exist" >< data_low)) && (!("???" >< data_low))
  72.      && (!("welcome to" >< data_low))){
  73. report = "
  74. There is a bug in the remote finger service which, when triggered, allows
  75. a user to force the remote finger daemon to  display the list of the accounts 
  76. that have never been used, by issuing the request :
  77.  
  78.         finger 0@target
  79.         
  80. This list will help an attacker to guess the operating system type. It will 
  81. also tell him which accounts have never been used, which will often make him 
  82. focus his attacks on these accounts.
  83.  
  84. Here is the list of accounts we could obtain : 
  85. " + data + "
  86.  
  87. Solution : disable the finger service in /etc/inetd.conf and restart the inetd
  88. process, or upgrade your finger service.
  89.  
  90. Risk factor : Medium";
  91.  
  92.              security_warning(port:port, data:report);
  93.         set_kb_item(name:"finger/0@host", value:TRUE);
  94.         }
  95.  
  96.  }
  97. }
  98.